home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / xrf.com / BOOLEAN.H < prev    next >
Encoding:
C/C++ Source or Header  |  1988-10-06  |  1.4 KB  |  23 lines

  1. /****************************************************************************
  2.  *                                                                          *
  3.  *  boolean.h - definitions required for boolean operations                 *
  4.  *                                                                          *
  5.  *   Copyright (c) 1988, Thomas H. Goodgame, Jr.  All rights reserved.      *
  6.  *                                                                          *
  7.  *  Purpose:                                                                *
  8.  *    This file defines macros for BOOLEAN typedef and logical values of    *
  9.  *    TRUE and FALSE to use with it.                                        *
  10.  *                                                                          *
  11.  ****************************************************************************
  12.  *                                                                          *
  13.  *  Derived from a text file CRULES.DOC contained in CRULES.ARC titled      *
  14.  *  "Notes from the Ultra-Conservative Right Wing" by Marc J. Rochkind.     *
  15.  *  Copyright by Advanced Programming Institute, Ltd.                       *
  16.  *                                                                          *
  17.  ****************************************************************************/
  18.  
  19. typedef int BOOLEAN;
  20.  
  21. #define TRUE  1
  22. #define FALSE 0
  23.